home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr49 / actlib11.zip / CALC.ZIP / TEST.C < prev   
C/C++ Source or Header  |  1993-01-14  |  357b  |  20 lines

  1. #include <stdio.h>
  2. #include <math.h>
  3. #include <string.h>
  4. #include "calc.h"
  5.  
  6.  
  7.  
  8.  
  9. void main( )
  10.  
  11. {
  12.   char string[255] ;
  13.  
  14.   for (;;) { printf( "\nCalcul : " ) ;
  15.              if ( ! *gets(string) ) break ;
  16.              if ( calc(string) == HUGE_VAL ) strcpy( string , "error" ) ;
  17.              printf( "Result: %s\n" , string ) ;
  18.            }
  19. }
  20.